/* Basic reset */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
  }
  
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Utility classes */
  .text-center {
    text-align: center;
  }
  
  /* Responsive design */
  @media (max-width: 600px) {
    .table-responsive {
      overflow-x: auto;
    }
  }
  
  /* Format for div containing buttons */
  .button-container {
    display: flex;
    flex-wrap: column;
    gap: 10px; /* Space between buttons */
}

.button-container button {
    flex: 0 1 auto; /* Fixed width for each button */
    height: 40px; /* Fixed height for each button */
    padding: 5px;
    box-sizing: border-box;
}

/* Format the heading */
.action-container {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between buttons and dropdown */
  padding: 10px; /* Padding for the container */
}

.action-container h3 {
  margin-top: 0; /* Remove default margin for h3 */
}